Remove hash quotes
authorSyohei YOSHIDA <syohex@gmail.com>
Wed, 15 Jul 2015 01:35:13 +0000 (10:35 +0900)
committerSyohei YOSHIDA <syohex@gmail.com>
Wed, 15 Jul 2015 01:35:13 +0000 (10:35 +0900)
They are variables, not functions, so hash quotes are not necessary.

which-key.el

index d2cc7372b92d7fc49c3ad36ae32d9aeb02a6204a..42cc1401a13c8145ff02f504afa0bd572d50b239 100644 (file)
@@ -390,7 +390,7 @@ total height."
     (minibuffer (which-key--hide-buffer-minibuffer))
     (side-window (which-key--hide-buffer-side-window))
     (frame (which-key--hide-buffer-frame))
-    (custom (funcall #'which-key-custom-hide-popup-function))))
+    (custom (funcall which-key-custom-hide-popup-function))))
 
 (defun which-key--hide-buffer-minibuffer ()
   "Does nothing.
@@ -419,7 +419,7 @@ is shown, or if there is no need to start the closing timer."
       (minibuffer (which-key--show-buffer-minibuffer act-popup-dim))
       (side-window (which-key--show-buffer-side-window act-popup-dim))
       (frame (which-key--show-buffer-frame act-popup-dim))
-      (custom (funcall #'which-key-custom-show-popup-function act-popup-dim)))))
+      (custom (funcall which-key-custom-show-popup-function act-popup-dim)))))
 
 (defun which-key--show-buffer-minibuffer (act-popup-dim)
   "Does nothing.
@@ -540,7 +540,7 @@ window."
     (minibuffer (which-key--minibuffer-max-dimensions))
     (side-window (which-key--side-window-max-dimensions))
     (frame (which-key--frame-max-dimensions))
-    (custom (funcall #'which-key-custom-popup-max-dimensions-function selected-window-width))))
+    (custom (funcall which-key-custom-popup-max-dimensions-function selected-window-width))))
 
 (defun which-key--minibuffer-max-dimensions ()
   "Return max-dimensions of minibuffer (height . width).